type go/types.substMap

9 uses

	go/types (current package)
		subst.go#L16: type substMap map[*TypeParam]Type
		subst.go#L20: func makeSubstMap(tpars []*TypeParam, targs []Type) substMap {
		subst.go#L22: 	proj := make(substMap, len(tpars))
		subst.go#L31: func makeRenameMap(from, to []*TypeParam) substMap {
		subst.go#L33: 	proj := make(substMap, len(from))
		subst.go#L40: func (m substMap) empty() bool {
		subst.go#L44: func (m substMap) lookup(tpar *TypeParam) Type {
		subst.go#L58: func (check *Checker) subst(pos token.Pos, typ Type, smap substMap, expanding *Named, ctxt *Context) Type {
		subst.go#L86: 	smap      substMap